@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --ubuntu-font: "Ubuntu", sans-serif;
}
body{
    position: relative;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--ubuntu-font);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    padding-left: 0;
}

.container {
    max-width: 1150px;
}

.top_bar {
    padding: 10px 0;
    background-color: #42a0d5;
    color: #fff;
    position: relative;
}

nav {
    width: 100%;
    height: 100%;
    height: 70px;
    background: #000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 50px;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.navbar .logo img {
    width: 14rem;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}


.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

.navbar .contact-box a {
    font-size: 19px;
    color: #fff;
    text-transform: capitalize;
    padding: 1rem;
    border-radius: 0;
    font-weight: 700;
    background-color: #ff8401;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #000;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar .nav-links .sidebar-logo img {
        width: 12rem;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;

    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        display: flex;
        align-items: center;
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

/* Banner CSS Start */
.banner_section {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    padding: 70px 100px;
    background-color: #e1f0f9;
}

.banner_section .banner_swiper .image img {
    width: 80%;
}

.banner_section .content {
    height: 500px;
    width: 100%;
    padding: 0 0 0 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_section .content .title h1 {
    font-size: 50px;
    font-weight: 700;
}

.banner_section .content .title h1 span {
    color: #0091e4;
}

.banner_section .content .subtitle h5 {
    font-size: 20px;
}

.banner_section .content button {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    background-color: #ff8401;
    border-radius: 40px;
    border: none;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

.banner_section .content button.first {
    background: #000;
}

.banner_section .swiper-button-prev {
    background: #fff;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: 25rem;
}

.banner_section .swiper-button-next {
    background: #fff;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: 25rem;
}

.banner_section .swiper-button-next:after,
.banner_section .swiper-button-prev:after {
    font-size: 35px;
    font-weight: 600;
}

/* Banner CSS End */

/* About CSS Start */
.about {
    padding: 2rem;
}

.about .image {
    padding: 0 4rem 0 0;
}

.about .image img {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    border-radius: 10px;
}

.about .content .title h1 {
    position: relative;
    padding: 16px 0 16px 0;
    font-size: 30px;
    color: #0091e3;
    margin: 0 0 5px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about .content .title h1:before {
    content: "";
    width: 65px;
    height: 10px;
    background-color: #ff8401;
    position: absolute;
    left: 0;
    top: 0;
}

.about .content button {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    background-color: #ff8401;
    border-radius: 40px;
    border: none;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

/* About CSS End */

/* Feature CSS Start */
.feature {
    position: relative;
    background-color: #0091e4;
    border-radius: 300px 0px 0px 0px;
    padding: 3rem 3rem 2rem 3rem;
}

.feature .bg_overlay {
    background-image: url(../images/feature-bg-overlay-img.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    mix-blend-mode: overlay;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-attachment: fixed;
}

.feature .title h1 {
    position: relative;
    padding: 0 0 15px 0;
    font-size: 38px;
    color: #fff;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.feature .title h1::after {
    content: "";
    width: 65px;
    height: 10px;
    background-color: #ff8401;
    position: absolute;
    left: 5rem;
    top: 3rem;
}

.feature .subtitle h5 {
    color: #fff;
    font-size: 25px;
}

.feature .card_boxes .box {
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.feature .card_boxes .box .icon {
    width: 90px;
    height: 90px;
    background-color: #444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
    color: #fff;
    font-size: 40px;
}

.feature .card_boxes .box .title h2 {
    font-size: 28px;
    padding-bottom: .5rem;
}

/* Feature CSS End */


/* Testimonial CSS Start */
.testimonial {
    padding: 2rem 0;
}

.testimonial .content {
    padding: 0 3rem 0 0;
}

.testimonial .content .title h1 {
    font-size: 30px;
}

.testimonial .content .subtitle h5 {
    font-size: 25px;
}

.testimonial .content button {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    padding: 5px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    background-color: #ff8401;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

.testimonial .content button span {
    font-weight: 600;
}

.testimonial .testimonial_cards {
    padding: 0 3rem 0 3rem;
    width: 100%;
    overflow: hidden;
}

.testimonial .testimonial_swiper {
    width: 100%;
    position: relative;
}

.testimonial .testimonial_swiper .card {
    border: none;
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
}

.testimonial .swiper-slide-active .card {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);

}

.testimonial .testimonial_swiper .card .img-name img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial .testimonial_swiper .card .img-name h2 {
    font-size: 20px;
}

.testimonial .testimonial_swiper .card .text p {
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonial .swiper-button-prev {
    background: #ff8401;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    left: -1rem;
}

.testimonial .swiper-button-next {
    background: #ff8401;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    right: -1rem;
}

.testimonial .swiper-button-next:after,
.testimonial .swiper-button-prev:after {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}

/* Testimonial CSS End */

/* Location CSS Start */
.location {
    padding: 2rem 0 0 0;
    background-color: #e1f0f9;
}

.location .title h2 {
    position: relative;
    padding: 0 0 15px 0;
    font-size: 35px;
    color: #0091e3;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.location .title h2::after {
    content: "";
    width: 65px;
    height: 10px;
    background-color: #ff8401;
    position: absolute;
    left: 20rem;
    top: 3rem;
}

.location .subtitle h5 {
    color: #000;
    font-size: 20px;
}

.location .custom-card {
    box-shadow: 0 4px 14px 0 rgb(0 0 0 / 16%);
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.location .custom-card:hover img {
    transform: scale(1.1);
}

.location .custom-card .image {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.location .custom-card .image img {
    height: 220px;
    width: 100%;
    transition: .5s all;
}

.location .content {
    padding: 1rem;
    background: #000;
    background-color: #feeedb;
}

.location .content h4 {
    font-weight: 600;
    font-size: 22px;
}

.location .content p {
    font-size: 16px;
}

.location .content a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    padding: 5px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    background-color: #ff8401;
    border-radius: 20px;
    border: none;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

/* Location CSS End */

/* Overview CSS Start */
.overview {
    padding: 2rem 0 0 0;
}

.overview .title h2 {
    position: relative;
    padding: 0 0 15px 0;
    font-size: 35px;
    color: #0091e3;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.overview .title h2::after {
    content: "";
    width: 65px;
    height: 10px;
    background-color: #ff8401;
    position: absolute;
    left: 20rem;
    top: 3rem;
}

.overview .image {
    padding: 0 3rem 0 0;
}

.overview .image img {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
    border-radius: 10px;
    height: 550px;
    width: 100%;
}

.overview .content .child .title .icon img {
    width: 2rem;
    margin-right: .5rem;
}

.overview .content .child .title h1 {
    color: #0091e3;
    font-size: 18px;
    margin-bottom: 0;
}

.overview .content .child .text p {
    font-size: 16px;
    padding-top: .6rem;
}

/* Overview CSS Start */


/* Info CSS Start */
.info {
    padding: 2rem 0;
    background-color: #e1f0f9;
}

.info .content .child .icon img {
    width: 1.5rem;
    margin-right: .5rem;
}

.info .content .child .title h1 {
    font-size: 20px;
    color: #0091e3;
    margin-bottom: 0;
}

.info .content .keypoints .title h1 {
    color: #ff8401;
}

.info .content .keypoints p {
    position: relative;
    padding: 0 0 0 1.2rem;
}

.info .content .keypoints p::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: 0;
    top: .5rem;
}

/* Info CSS End */

/* Feature Two CSS Start */
.feature_two {
    background-color: #ff8401;
    position: relative;
    width: 100%;
}

.feature_two img {
    width: 16rem;
    position: absolute;
    top: -4rem;
    right: 3rem;
    z-index: 99;
}

.feature_two .title h1 {
    font-size: 27px;
    width: 50%;
}

.feature_two .title h1::after {
    background-color: #fff;
    left: 0;
    top: -1rem;
}

.feature_two .subtitle h5 {
    font-size: 19px;
    width: 67%;
}

.feature_two .counter_area .counter_item .icon {
    font-size: 33px;
    width: 70px;
    height: 70px;
    background-color: #b76a18;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature_two .counter_area .counter_item .text h1 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
}

.feature_two .counter_area .counter_item .text h5 {
    color: #fff;
    font-size: 18px;
}

/* Feature Two CSS End */

/* Courses CSS Start */
.courses{
    padding: 2rem 0 1rem 0;
    background-color: #e1f0f9;
}

.courses .title h5 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
}
.courses .content .title{
    color: #0091e3;
    font-size: 20px;
    font-weight: 600;
}
.courses .content .child{
    padding-bottom: 1rem;
}

/* Courses CSS End */


/* Blog CSS Start */
.blog {
    padding: 2rem 0;
}

.blog .title h2 {
    position: relative;
    padding: 0 0 15px 0;
    font-size: 35px;
    color: #0091e3;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.blog .title h2::after {
    content: "";
    width: 65px;
    height: 10px;
    background-color: #ff8401;
    position: absolute;
    left: .2rem;
    top: 3rem;
}

.blog .subtitle h5 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
}

.blog .blog_area .blog_item {
    box-shadow: 0 4px 14px 0 rgb(0 0 0 / 16%);
    background-color: #feeedb;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.blog .blog_area .blog_item:hover img {
    transform: scale(1.1);
}

.blog .blog_area .blog_item .image {
    height: 200px;
    overflow: hidden;
}

.blog .blog_area .blog_item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s all;
}

.blog .blog_area .blog_item .content {
    padding: 1.5rem;
}

.blog .blog_area .blog_item .content .date {
    font-size: 16px;
    font-weight: 500;
    padding: .5rem;
}

.blog .blog_area .blog_item .content .title {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 1rem;
}

.blog .blog_area .blog_item .content .description {
    line-height: 2;
}

/* Blog CSS End */

/* Footer CSS Start */
footer {
    background: #000;
    width: 100%;
    position: relative;
}

footer .content {
    padding: 1rem;
}

footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
}

footer .content .top .logo-details img {
    width: 14rem;
}

footer .content .top .media-icons {
    display: flex;
}

footer .content .top .media-icons a {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.4s ease;
}

footer .top .media-icons a:nth-child(1) {
    background: #4267B2;
}

footer .top .media-icons a:nth-child(1):hover {
    color: #4267B2;
    background: #fff;
}

footer .top .media-icons a:nth-child(2) {
    background: #1DA1F2;
}

footer .top .media-icons a:nth-child(2):hover {
    color: #1DA1F2;
    background: #fff;
}

footer .top .media-icons a:nth-child(3) {
    background: #E1306C;
}

footer .top .media-icons a:nth-child(3):hover {
    color: #E1306C;
    background: #fff;
}

footer .top .media-icons a:nth-child(4) {
    background: #0077B5;
}

footer .top .media-icons a:nth-child(4):hover {
    color: #0077B5;
    background: #fff;
}

footer .top .media-icons a:nth-child(5) {
    background: #FF0000;
}

footer .top .media-icons a:nth-child(5):hover {
    color: #FF0000;
    background: #fff;
}

footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .content .link-boxes .box_two {
    padding: 0 0 0 3rem;
}

footer .content .link-boxes .box_three {
    padding: 0 0 0 3rem;
}

footer .content .link-boxes .box_four {
    padding: 0 0 0 8rem;
}

footer .content .link-boxes .box .link_name {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
}

footer .link-boxes .box .link_name::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
}

footer .content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
}

footer .content .link-boxes .box li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease
}

footer .content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
}

footer .bottom-details {
    width: 100%;
    border-top: 1px solid #ddd;
    background: #000;
    padding: .5rem;
}

footer .bottom-details .bottom_text {
    display: flex;
    justify-content: center;
}

footer .bottom-details .bottom_text span,
footer .bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

footer .bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: underline;
}

footer .bottom-details .bottom_text a {
    margin-right: 10px;
}

@media (max-width: 900px) {
    footer .content .link-boxes {
        flex-wrap: wrap;
    }

    footer .content .link-boxes .input-box {
        width: 40%;
        margin-top: 10px;
    }
}

@media (max-width: 700px) {
    footer {
        position: relative;
    }

    footer .content .top .logo-details {
        font-size: 26px;
    }

    footer .content .top .media-icons a {
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    footer .content .link-boxes .box {
        width: calc(100% / 3 - 10px);
    }

    footer .content .link-boxes .input-box {
        width: 60%;
    }

    footer .bottom-details .bottom_text span,
    footer .bottom-details .bottom_text a {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    footer .content .top {
        flex-direction: column;
    }

    footer .content .top .media-icons {
        margin-top: 16px;
    }

    footer .content .link-boxes .box {
        width: calc(100% / 2 - 10px);
    }

    footer .content .link-boxes .input-box {
        width: 100%;
    }
}

/* Footer CSS End */


/* Modal CSS Start */
.contact-modal-popup img {
    height: 100%;
    object-fit: cover;
}

.contact-modal-popup .close-btn {
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    border: 5px solid #ff8401;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2rem;
    color: #000;
    padding: 0.5rem;
    z-index: 100;
    cursor: pointer;
    transition: 0.5s all;
}

.contact-modal-popup .close-btn:hover {
    transform: rotate(360deg);
}

.contact-modal-popup .title h1 {
    font-size: 30px;
    margin-bottom: 1rem;
}

.contact-modal-popup .description p {
    font-size: 17px;
    margin-bottom: 1rem;
}

.contact-modal-popup .form-control {
    border-radius: 4px;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
}

.contact-modal-popup .form-control:focus {
    box-shadow: none;
    border: 1px solid #ff8401;
}

.contact-modal-popup button {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    background-color: #ff8401;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

/* Modal CSS End */

/* CTA CSS Start */
.cta-whtsp {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: block;
    position: fixed;
    bottom: 1rem;
    right: 2rem;
    z-index: 999;
    animation: ripWht 1.5s 0s ease-out infinite;
}

@keyframes ripWht {

    0% {box-shadow: 0 0 8px 6px #25d366, 0 0 0 0 #25d366, 0 0 0 0 #25d366;}

    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px #25d366, 0 0 12px 14px ;}

    100% {box-shadow: 0 0 8px 6px #25d366, 0 0 0 10px #25d366, 0 0 0 10px #25d366;}

}
.cta-apply {
    background: #ff8401;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    padding: .5rem 1rem;
    position: fixed;
    bottom: 1.5rem;
    left: 8rem;
    z-index: 99;
}
.cta-call {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 2rem;
    z-index: 999;
}
/* CTA CSS End */


/* Media Query Start */

@media (max-width: 767px) {
    .contact-modal-popup{
        display: flex;
    justify-content: center;
    align-items: center;
    }
    .top_bar .top_bar_links i {
        font-size: 3vw;
    }

    .top_bar .top_bar_links p {
        font-size: 3vw;
    }

    .top_bar .top_bar_links a {
        font-size: 3vw;
    }

    .navbar .contact-box a {
        display: none;
    }

    .banner_section {
        padding: 2rem 0;
        height: auto;
    }

    .banner_section .swiper-button-prev {
        background: #fff;
        height: 30px;
        width: 30px;
        display: none;
    }

    .banner_section .swiper-button-next {
        background: #fff;
        height: 30px;
        width: 30px;
        display: none;
    }

    .banner_section .swiper-button-next:after,
    .banner_section .swiper-button-prev:after {
        font-size: 15px;
    }

    .banner_section .content {
        height: auto;
        padding: 0 0 0 2rem;
    }

    .banner_section .content .title h1 {
        font-size: 8vw;
    }

    .banner_section .content .subtitle h5 {
        font-size: 5vw;
    }

    .banner_section .content button {
        font-size: 3.5vw;
        padding: 10px 20px;
    }

    .banner_section .image {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about {
        padding: 1rem 0 0 0;
    }

    .about .image {
        padding: 0 0 1.5rem 0;
    }

    .about .content .title h1 {
        padding: 16px 0 8px 0;
        font-size: 7vw;
    }

    .about .content .title h1:before {
        height: 5px;
    }

    .about .content p {
        text-align: justify;
        font-size: 4vw;
    }

    .feature {
        border-radius: 0;
        padding: 1rem 0 0 0;
    }

    .feature .title h1 {
        font-size: 7vw;
    }

    .feature .title h1::after {
        left: 3rem;
        top: 75%;
        height: 5px;
    }

    .feature .subtitle h5 {
        font-size: 5vw;
    }

    .feature .card_boxes .box {
        padding: 1rem 0;
    }

    .feature .card_boxes .box .title h2 {
        font-size: 6vw;
    }

    .feature .card_boxes .box .icon {
        width: 60px;
        height: 60px;
        font-size: 7vw;
    }

    .testimonial {
        padding: 1rem 0 0 0;
    }

    .testimonial .content {
        padding: 0;
    }

    .testimonial .content .title h1 {
        font-size: 7vw;
    }

    .testimonial .content .subtitle h5 {
        font-size: 5vw;
    }

    .testimonial .content .text p {
        text-align: justify;
        font-size: 4vw;
    }

    .testimonial .content button {
        display: block;
        font-size: 3.5vw;
        padding: 5px 15px;
    }

    .testimonial .testimonial_cards {
        padding: 0;
    }

    .testimonial .swiper-button-prev {
        height: 40px;
        width: 40px;
        left: 0;
    }

    .testimonial .swiper-button-next {
        height: 40px;
        width: 40px;
        right: 0;
    }

    .testimonial .swiper-button-next:after,
    .testimonial .swiper-button-prev:after {
        font-size: 15px;
    }

    .testimonial .testimonial_swiper .card .text p {
        text-align: justify;
        font-size: 4vw;
    }

    .location {
        padding: 1rem 0 0 0;
    }

    .location .title h2 {
        font-size: 7vw;
    }

    .location .title h2::after {
        height: 5px;
        left: 0;
        top: 85%;
    }

    .location .subtitle h5 {
        font-size: 5vw;
    }

    .location .custom-card .image {
        height: auto;
    }

    .location .custom-card .image img {
        height: auto;
        object-fit: cover;
    }

    .location .content h4 {
        font-size: 5vw;
    }

    .location .content p {
        font-size: 4vw;
    }

    .overview {
        padding: 1rem 0 0 0;
    }

    .overview .title h2 {
        font-size: 7vw;
    }

    .overview .title h2::after {
        height: 5px;
        left: 0;
        top: 90%;
    }

    .overview .image {
        padding: 0;
        margin-bottom: 1rem;
    }

    .overview .image img {
        height: auto;
    }

    .overview .content .child .title .icon img {
        width: 20px;
    }

    .overview .content .child .title h1 {
        font-size: 5vw;
    }

    .overview .content .child .text p {
        text-align: justify;
        font-size: 4vw;
    }

    .info {
        padding: 1rem 0 1rem 0;
    }

    .info .content .child .title .icon img {
        width: 20px;
    }

    .info .content .child .title h1 {
        font-size: 4.5vw;
    }

    .info .content .child .text p {
        text-align: justify;
        font-size: 4vw;
    }

    .info .content .keypoints p {
        text-align: justify;
        font-size: 4vw;
    }

    .feature_two img {
        width: 10rem;
        position: absolute;
        top: -2rem;
        right: 0;
    }

    .feature_two .title h1 {
        font-size: 5vw;
        width: 70%;
    }

    .feature_two .title h1::after {
        left: 0rem;
        top: 5rem;
        height: 5px;
    }

    .feature_two .subtitle h5 {
        font-size: 4vw;
        width: 58%;
    }

    .feature_two .counter_area .counter_item {
        margin-bottom: .5rem;
    }

    .feature_two .counter_area .counter_item .icon {
        font-size: 4.5vw;
        width: 35px;
        height: 35px;
    }

    .feature_two .counter_area .counter_item .text h1 {
        font-size: 4vw;
    }

    .feature_two .counter_area .counter_item .text h5 {
        font-size: 4vw;
    }

    .courses {
        padding: 1rem 0 0 0;
    }
    .courses .title h5 {
        font-size: 5vw;
    }
    .courses .title {
        font-size: 5.5vw;
    }
    .courses .text {
        font-size: 4vw;
        text-align: justify;
    }

    .blog {
        padding: 1rem 0 0 0;
    }

    .blog .title h2 {
        font-size: 7vw;
        margin-bottom: .5rem;
    }

    .blog .title h2::after {
        height: 5px;
        left: 0;
        top: 2.2rem;
    }

    .blog .subtitle h5 {
        font-size: 7vw;
    }

    .blog .blog_area .blog_item {
        margin-bottom: 1rem;
    }

    .blog .blog_area .blog_item .content {
        padding: 1rem;
    }

    .blog .blog_area .blog_item .content .title {
        font-size: 5vw;
        padding-bottom: .5rem;
    }

    .blog .blog_area .blog_item .content .description {
        text-align: justify;
        font-size: 4vw;
    }

    footer .content .link-boxes .box_one {
        width: 100%;
        padding: 0 0 0 1rem;
    }

    footer .content .link-boxes .box_two {
        width: 50%;
        padding: 0 0 0 1rem;
    }

    footer .content .link-boxes .box_three {
        width: 50%;
    }

    footer .content .link-boxes .box_four {
        padding: 0 0 0 1rem;
    }

    footer .content .link-boxes .box .link_name {
        font-size: 16px;
    }

    nav .navbar .nav-links {
        max-width: 300px;
    }
    .cta-whtsp {
        height: 50px;
        width: 50px;
    }
    .cta-call {
        height: 50px;
        width: 50px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .banner_section {
        height: auto;
        padding: 0;
    }

    .banner_section .swiper-button-prev {
        background: #fff;
        height: 30px;
        width: 30px;
        display: none;
    }

    .banner_section .swiper-button-next {
        background: #fff;
        height: 30px;
        width: 30px;
        display: none;
    }

    .banner_section .swiper-button-next:after,
    .banner_section .swiper-button-prev:after {
        font-size: 15px;
    }

    .banner_section .content {
        padding: 0 0 0 2rem;
    }

    .banner_section .content .title h1 {
        font-size: 38px;
        padding-bottom: 1rem;
    }

    .banner_section .content .subtitle h5 {
        padding-bottom: 1rem;
    }

    .banner_section .image {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about .image {
        padding: 0 0 2rem 0;
    }

    .testimonial .testimonial_cards {
        padding: 0 1rem 0 1rem;
    }

    .location .custom-card .image {
        height: 210px;
    }

    .location .custom-card .image img {
        height: 210px;
    }

    .overview .image {
        padding: 0 4rem 2rem 4rem;
    }

    .overview .image img {
        height: auto;
    }

    .feature_two {
        border-radius: 0;
        padding: 2rem 1rem 0 1rem;
    }

    .feature_two .counter_item {
        margin-bottom: 1rem;
    }

    .feature_two img {
        width: 15rem;
        top: -4rem;
        right: 0rem;
    }

    .blog .blog_area .blog_item .content .title {
        font-size: 19px;
    }

    .blog .blog_area .blog_item .content .description {
        line-height: 1.8;
    }

    footer .content .link-boxes .box_one {
        width: 55%;
    }

    footer .content .link-boxes .box_two {
        width: 45%;
    }

    footer .content .link-boxes .box_three {
        width: 50%;
        padding: 0 0 0 1rem;
    }

    footer .content .link-boxes .box_four {
        width: 50%;
        padding: 0 0 0 5rem;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {

    .banner_section {
        height: auto;
        padding: 0;
        position: relative;
    }

    .banner_section .swiper-button-prev {
        background: #fff;
        height: 40px;
        width: 40px;
    }

    .banner_section .swiper-button-next {
        background: #fff;
        height: 40px;
        width: 40px;
    }

    .banner_section .swiper-button-next:after,
    .banner_section .swiper-button-prev:after {
        font-size: 20px;
    }

    .banner_section .content {
        padding: 0 0 0 5rem;
    }

    .banner_section .content .title h1 {
        font-size: 38px;
        padding-bottom: 1rem;
    }

    .banner_section .content .subtitle h5 {
        padding-bottom: 1rem;
    }

    .banner_section .image {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about .image {
        padding: 0;
    }
    .testimonial {
        padding: 2rem;
    }
    .testimonial .testimonial_cards {
        padding: 0 1rem 0 1rem;
    }
    .location .title h2::after {
        left: 16rem;
    }
    .location {
        padding: 2rem 2rem 0 2rem;
    }
    .location .content h4 {
        font-size: 19px;
    }
    .overview {
        padding: 2rem 2rem 0 2rem;
    }
    .overview .image {
        padding: 0;
    }
    .overview .content .child .text p {
        font-size: 14px;
        padding-top: .2rem;
    }
    .overview .content .child .title .icon img {
        width: 20px;
    }
    .overview .content .child .title h1 {
        font-size: 16px;
    }
    .info {
        padding: 2rem 2rem 2rem 2rem;
    }
    .feature_two .title{
        padding: 0 0 0 7rem;
    }
    .feature_two .subtitle{
        padding: 0 0 0 7rem;
    }
    .feature_two img {
        width: 14rem;
        top: -3rem;
    }
    .feature_two .counter_area .counter_item .icon {
        font-size: 30px;
        width: 60px;
        height: 60px;
    }
    .feature_two .counter_area .counter_item .text h1 {
        font-size: 30px;
    }
    .feature_two .counter_area .counter_item .text h5 {
        font-size: 16px;
    }
    .courses{
        padding: 2rem 2rem 2rem 2rem;
    }
    .blog {
        padding: 2rem 2rem 0 2rem;
    }
    footer .content .link-boxes .box_four {
        padding: 0 0 0 3rem;
    }
}


@media (min-width: 1200px) and (max-width: 1500px) {
    .banner_section {
        height: auto;
    }
    .banner_section .content{
        padding: 0 0 0 4rem;
    }
    .feature_two .title{
        padding: 0 0 0 4rem;
    }
    .feature_two .subtitle{
        padding: 0 0 0 4rem;
    }
    .feature_two img {
        width: 14rem;
        top: -3rem;
    }
    .blog .blog_area .blog_item .image {
        height: 240px;
    }
    .blog .blog_area .blog_item .image img {
        height: 240px;
    }
}

/* Media Query End */